
html {
  scroll-behavior: smooth;
}

.wrapper {
    width: 100%;
    /*height: 100vh;   responsive height */
    /*background-color: #f7edc0; */
    font-family: sans-serif; /* Use the same font family as your existing CSS */
}

.header {
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    width: 100%; /* Ensure full width */
    transition: background-color 0.3s; /* Add transition for background color */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 4px 0px;
}

.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white; /* Set background color for fixed header */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
}

/* Banner logo */
.header img {
    width: 350px; /* Adjust the width as needed */
    height: 270px; /* Maintain aspect ratio */
    margin-left: 10px;
}

 body {
            margin: 0; /* Remove default margin to ensure full width */
            padding: 0; /* Remove default padding */
        }

        /* Add a margin to the body to offset the fixed header */
        body.with-fixed-header {
            margin-top: 60px; /* Adjust the value based on your header height */
        }


/* Navigation button styles */
.col1 {
    display: flex; /* Make it a flex container */
    gap: 10px; /* Add space between buttons */
}

.col1 a {
    text-align: center;
    font-size: 20px;
    font-family: sans-serif;
    text-decoration: none;
    text-shadow: 0.5px 0.5px gray;
    color: #016ea7;
    /*background-color: #4473c4;*/
    padding: 8px;
    border-radius: 4px;
    margin-right: 2px;
}

.col1 a:hover {
    transition-duration: 0.6s;
    color:black;
}

.col1 a#book2 {
    text-align: center;
    font-size: 18px;
    font-family: sans-serif;
    text-decoration: none;
    text-shadow: 0.5px 0.5px gray;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.6s; /* Add transition for background color */
    background-color: black;
    color:white;
}

/*.col1 a#book2:hover {
    color: black;
    background-color: gray;
}
*/
#contact{
  font-family: sans-serif;
}

.footer {
    background-color: #0E2339;
    color: white;
    padding: 18px;
    text-align: center;
}

#logofoot {
    width: 300px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}

.social-icons img {
    width: 50px;
}

#fb img{
    width: 48.5px;
}

#insta img{
  margin-left: 10px;
}
.copyright {
    background-color: #016ea7;
    padding: 1px;
    text-align: center;
    color: white;
    font-family: sans-serif;
    font-size: 12px;
    /*text-shadow: 0.5px 0.5px white;*/
}


/**************************************/


.row1{
  height: 1100px;
  padding: 10px;
}

 .user-form {
            width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .form-column {
            flex: 1;
            min-width: 0; /* To prevent overflow issues */
        }

        #message {
            height: 120px;
        }

        #email {
            margin-top: 12px;
        }

        .user-form input {
            width: 98%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            font-size: 14px;
        }

        .user-form button {
            background-color: #016ea7;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }

        .user-form button:hover {
            background-color: #004d73;
        }
        .user-form select{
            font-size: 14px;
        }
        .checkbox-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: left;
                align-items: left;
            }




        #signatureCanvas {
            border: 1px solid #ccc;
            cursor: crosshair;
        }

        #clearSignature{
            width: 110px;
            height: 20px;
            font-size: 14px;
            padding: 0px;
            background-color: lightgray;
            color: black;
            margin: 0px;
            border:0px;
        }



/* Add this CSS at the end of your existing CSS */

@media only screen and (max-width: 600px) {
  .user-form {
    width: 90%;
  }

  .form-column {
    flex: 1;
    min-width: 100%; /* Allow the columns to take full width on smaller screens */
  }

  .user-form input,
  .user-form select {
    width: 100%;
    box-sizing: border-box;
  }

  #signatureCanvas {
    width: 100%;
  }

  #clearSignature {
    width: 100%;
    margin-top: 10px;
  }
}
